home *** CD-ROM | disk | FTP | other *** search
- /* HELLO.NLM
- * This trivial NLM prints the traditional message "Hello, world." on the server
- * console. Type "Load Hello" on the server to see it run.
- *
- * Written by: Jamie Osborne 9/94
- *
- * You may copy and modify this code at will.
- *
- * Please note that this NLM is intended at a demonstration program. At the time
- * of its creation, NetWare for PowerPC was in alpha. As such, this program
- * may not compile and run without changes in the final product. (now THAT would
- * be sad . . . )
- *
- * Apple Computer, Inc. makes no warranties about the the fitness of this code
- * for any purpose and will not be held liable for any damages you may suffer
- * from using this code. Furthermore, Apple Computer, Inc. will not be held
- * liable for the death of Elvis or any other space alien.
- *
- * Your mileage may vary.
- *
- */
-
- // Some standard includes
- #include <stdio.h>
-
- main()
- {
- printf("Hello, world.\n");
- }
-